home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20021006-20030409 / 000109_Stefan.Bill@soudronic.com_Mon Nov 25 11:06:25 EST 2002.msg < prev    next >
Text File  |  2003-04-08  |  2KB  |  93 lines

  1. Article: 13889 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!newsfeed.stueberl.de!fu-berlin.de!uni-berlin.de!mail.soudronic.COM!not-for-mail
  3. From: Stefan Bill <Stefan.Bill@soudronic.com>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Send a String after connection (OpenVMS)
  6. Date: Mon, 25 Nov 2002 16:45:09 +0100
  7. Lines: 76
  8. Message-ID: <4fg4uu8uem7rovuuc41u7nkth9v4i0g930@4ax.com>
  9. NNTP-Posting-Host: mail.soudronic.com (212.59.128.3)
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Trace: fu-berlin.de 1038239110 23421840 212.59.128.3 (16 [70952])
  14. X-Newsreader: Forte Free Agent 1.92/32.572
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13889
  16.  
  17. Hi
  18.  
  19. For my Pager, i need to send a string after i connect with a modem.
  20.  
  21. The String-Format ::Pager-Number::Message:: is given to me from the
  22. Paging-Service and works fine over X.25
  23. Paging-Service ist Telepage Swiss
  24.  
  25. On the tta0 is a Zyxel U-1496 Modem installed.
  26.  
  27. But my pager receives no message.
  28. The Format and the Number are the right ones, over X.25 that work.
  29.  
  30. What's wrong with my script.
  31.  
  32. Thank you for any hints.
  33.  
  34. Script: (pager.ksh)
  35. ---------
  36. set take echo on
  37. set modem type zyxel
  38. set line tta0:
  39. set carrier-watch off
  40. set speed 9600
  41. SET DIAL DISPLAY ON
  42. dial 0740900103
  43. OUTPUT ::Pager-Nummer::Message::\13
  44. wait 5
  45. exit
  46. ---------
  47.  
  48. Following is the output from the call:
  49.  
  50. AX1>kermit pager.ksc
  51.   2. set modem type zyxel
  52.   3. set line tta0:
  53.   4. set carrier-watch off
  54.   5. set speed 9600
  55.   6. SET DIAL DISPLAY ON
  56.   7. dial 0740900103
  57.  
  58.  Trying: 0740900103...
  59.  Device: _AXFI01$TTA0:, modem: zyxel, speed: 9600
  60.  Dial timeout: 70 seconds
  61.  To cancel: type Ctrl-C (hold down Ctrl, press C).
  62. +++
  63. 0++ATQ0H0
  64.  
  65.  Modem hangup OK
  66.  Initializing: 16:37:47...
  67. ATQ0
  68. 0
  69. AT&H4
  70. 0
  71. ATQ0E1&S1&N0X5&Y1
  72. 0
  73. AT&K3
  74. 0
  75. AT&K4
  76. 0
  77. ATM1L2
  78. 0
  79. ATS2=43S7=70
  80. 0
  81.  
  82.  Dialing: 16:37:59...
  83. ATD0740900103
  84. 12
  85.  
  86.  Call complete: 16:38:18.
  87.   8. OUTPUT ::Number::TESTMESSAGE::
  88.   9. wait 5
  89. 010. exit
  90. AX1>
  91.  
  92.  
  93.